158849615f4930cbda22bf0ab2c9ec67331c4bac,portal-service/src/com/liferay/portal/kernel/portlet/DefaultFriendlyURLMapper.java,DefaultFriendlyURLMapper,populateParams,#String#Map#Map#,93

Before Change



		friendlyURLPath = friendlyURLPath.substring(getMapping().length() + 1);

		Map<String, String> routeParameters = router.urlToParameters(
			friendlyURLPath);

		if (routeParameters == null) {
			if (_log.isWarnEnabled()) {

After Change



		friendlyURLPath = friendlyURLPath.substring(getMapping().length() + 1);

		Map<String, String> routeParameters = new HashMap<String, String>();

		if (!router.urlToParameters(friendlyURLPath, routeParameters)) {
			if (_log.isWarnEnabled()) {
				_log.warn(
					"No route could be found to match URL " + friendlyURLPath);